ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / ICollectionViewEx Class / FilterAsync Method / FilterAsync<T>(ICollectionView<T>,Func<Object,Boolean>) Method
The collection view.
The preicate which will filter the collection.

In This Topic
    FilterAsync<T>(ICollectionView<T>,Func<Object,Boolean>) Method
    In This Topic
    Filters the data from a query string.
    Syntax
    'Declaration
     
    Public Overloads Shared Function FilterAsync(Of T As Class)( _
       ByVal collectionView As ICollectionView(Of T), _
       ByVal predicate As System.Func(Of Object,Boolean) _
    ) As System.Threading.Tasks.Task
    public static System.Threading.Tasks.Task FilterAsync<T>( 
       ICollectionView<T> collectionView,
       System.Func<object,bool> predicate
    )
    where T: class

    Parameters

    collectionView
    The collection view.
    predicate
    The preicate which will filter the collection.

    Type Parameters

    T
    See Also